home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / -archivi / -recent2 / expanddict.lha / ExpandDict / expanddict.readme < prev   
Text File  |  1999-03-19  |  3KB  |  75 lines

  1.                           Introduction
  2.                           
  3.  I found this program as C source on a subdir from ftp.funet.fi,
  4.  simply recompiled without modifications with DiceC 3.15.
  5.  For completation sakeness I hereby include it with the distribuition
  6.  together with the content of the original archive.
  7.    
  8.     This program assumes each line of stdin contains a word, 
  9.     consisting of a "prefix length", a "suffix" and a newline.
  10.     The prefix length is an integer in [0..35], encoded as a single
  11.     byte [0-9A-Z], which represents that many characters from
  12.     the beginning of the previous word. (In particular, the 
  13.     prefix lengt of the first word is zero.)  The suffix 
  14.     is simply the rest of the word.
  15.    
  16.     For instance, the word list
  17.    
  18.        baby
  19.        back
  20.        backs
  21.        backstage
  22.        backup
  23.        bath
  24.        cobalt
  25.        cobra
  26.    
  27.     would be encoded as
  28.    
  29.        0baby
  30.        2ck
  31.        4s
  32.        5tage
  33.        4up
  34.        2th
  35.        0cobalt
  36.        3ra
  37.  
  38.                     
  39.                                     Usage
  40.  
  41.  This is a CLI only utility, syntax is clear:
  42.  
  43.  Usage: expanddict < foo.shrunk > foo
  44.  
  45.                                        
  46.                            Copyrights & Authors
  47.                                  
  48.  (C) Copyright 1992 Universidade Estadual de Campinas (UNICAMP)
  49.                     Campinas, SP, Brazil
  50.                                                                               
  51.    Authors:                                                                   
  52.                                                                               
  53.      Tomasz Kowaltowski  - CS Dept, UNICAMP <tomasz@dcc.unicamp.ansp.br>      
  54.      Claudio L. Lucchesi - CS Dept, UNICAMP <lucchesi@dcc.unicamp.ansp.br>    
  55.      Jorge Stolfi        - DEC Systems Research Center <stolfi@src.dec.com>   
  56.    
  57.    Amiga porting:
  58.  
  59.      Fabrizio "Lanch^DarkAge" Bartoloni <lanch@caribusiness.it>
  60.    
  61.    This file can be freely distributed, modified, and used for any            
  62.      non-commercial purpose, provided that this copyright and authorship      
  63.      notice be included in any copy or derived version of this file.          
  64.  
  65.      
  66.                                DISCLAIMER
  67.                                
  68.      This software is offered ``as is'', without any guarantee
  69.      as to fitness for any particular purpose.  Neither the copyright         
  70.      holder nor the authors or their employers can be held responsible for    
  71.      any damages that may result from its use.                                
  72.  
  73.  
  74.  
  75.